math/big.nat.set (method)
35 uses
math/big (current package)
float.go#L615: z.mant = z.mant.set(x.abs)
float.go#L664: z.mant = z.mant.set(x.mant)
float.go#L689: z.mant = z.mant.set(x.mant)
float.go#L1117: z.abs = z.abs.set(x.mant)
float.go#L1159: z.a.abs = z.a.abs.set(x.mant)
float.go#L1163: z.a.abs = z.a.abs.set(x.mant)
ftoa.go#L186: mant := nat(nil).set(x.mant)
int.go#L98: z.abs = z.abs.set(x.abs)
nat.go#L96: func (z nat) set(x nat) nat {
nat.go#L114: return z.set(x)
nat.go#L140: return z.set(x)
nat.go#L720: return z.set(x)
nat.go#L745: return z.set(x)
nat.go#L843: return z.set(x)
nat.go#L981: return z.set(x)
nat.go#L1005: z = z.set(x)
nat.go#L1095: z = z.set(z2)
nat.go#L1138: *powers[0] = powers[0].set(natOne)
nat.go#L1367: return z.set(x)
nat.go#L1392: return z.set(z1)
natconv.go#L331: q := nat(nil).set(x)
natconv.go#L495: larger = nat(nil).set(table[i].bbb)
natconv.go#L497: table[i].bbb = table[i].bbb.set(larger)
natdiv.go#L525: r = z2.set(u)
natdiv.go#L551: q = z.set(x) // result is x
prime.go#L101: x = x.set(natTwo)
rat.go#L112: a2 = a2.set(a)
rat.go#L113: b2 = b2.set(b)
rat.go#L210: a2 = a2.set(a)
rat.go#L211: b2 = b2.set(b)
rat.go#L310: babs = nat(nil).set(babs) // make a copy
rat.go#L312: z.a.abs = z.a.abs.set(a.abs)
rat.go#L313: z.b.abs = z.b.abs.set(babs)
rat.go#L461: return z.set(y)
rat.go#L463: return z.set(x)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |